【例子介绍】C# socket 聊天服务端和客户端源码 vs2010版
因为网上查看到C# SOCKET源码只有代码片段,没有程序源码包 根据网上提供的文档开发的vs2010 解决方案包。 在BIN文件夹有已编译的可执行程序。 一个服务端,一个客户端。服务端可以连接多个客户端。
【相关图片】
【源码结构】
.
├── C# socket 聊天服务端和客户端源码 vs2010版.rar
└── WindowsFormsApplication1
├── WindowsFormsApplication1
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── WindowsFormsApplication1.csproj
│ ├── bin
│ │ ├── Debug
│ │ │ ├── WindowsFormsApplication1.exe
│ │ │ ├── WindowsFormsApplication1.pdb
│ │ │ ├── WindowsFormsApplication1.vshost.exe
│ │ │ └── WindowsFormsApplication1.vshost.exe.manifest
│ │ └── Release
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ ├── WindowsFormsApplication1.Properties.Resources.resources
│ │ ├── WindowsFormsApplication1.csproj.FileListAbsolute.txt
│ │ ├── WindowsFormsApplication1.exe
│ │ ├── WindowsFormsApplication1.pdb
│ │ └── WindowsFormsApplication1.server.resources
│ ├── server.Designer.cs
│ ├── server.cs
│ └── server.resx
├── WindowsFormsApplication1.sln
├── WindowsFormsApplication1.suo
├── WindowsFormsApplication2
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── WindowsFormsApplication2.csproj
│ ├── bin
│ │ ├── Debug
│ │ │ ├── WindowsFormsApplication2.exe
│ │ │ └── WindowsFormsApplication2.pdb
│ │ └── Release
│ ├── client.Designer.cs
│ ├── client.cs
│ ├── client.resx
│ └── obj
│ └── x86
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── TempPE
│ ├── WindowsFormsApplication2.Properties.Resources.resources
│ ├── WindowsFormsApplication2.client.resources
│ ├── WindowsFormsApplication2.csproj.FileListAbsolute.txt
│ ├── WindowsFormsApplication2.exe
│ └── WindowsFormsApplication2.pdb
└── 截图.JPG
19 directories, 42 files
评论